home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 406_01 / atoc / comment.c < prev    next >
Text File  |  1993-11-09  |  677b  |  26 lines

  1. /*=========================================================================
  2.  
  3.     ATOC comment module
  4.  
  5. =========================================================================*/
  6.  
  7. #include <stdio.h>
  8. #include "atoc.h"
  9.  
  10.  
  11. /*-------------------------------------------------------------------------
  12. comment( s ) replaces any / / style comments with a standard one.
  13. -------------------------------------------------------------------------*/
  14. comment( s )
  15. char *s;
  16. {
  17.     char *cp, *strstr();
  18.  
  19.     if ( ( cp = strstr( s, "//" ) ) != NULL )
  20.     {
  21.         *( cp + 1 ) = '*';
  22.         strcat( cp, " */" );
  23.     }
  24. }
  25. /*=======================================================================*/
  26.